type crypto/cipher.gcmFallback
6 uses
crypto/cipher (current package)
gcm.go#L220: return &gcmFallback{cipher: cipher, nonceSize: nonceSize, tagSize: tagSize}, nil
gcm.go#L226: type gcmFallback struct {
gcm.go#L232: func (g *gcmFallback) NonceSize() int {
gcm.go#L236: func (g *gcmFallback) Overhead() int {
gcm.go#L240: func (g *gcmFallback) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
gcm.go#L275: func (g *gcmFallback) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {